home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / clipper / ks94an.zip / CTR_VAR.HDR < prev    next >
Text File  |  1994-04-25  |  879b  |  34 lines

  1. /******************************************************************************
  2.                  The Klipper Library, for CA-Clipper 5.x
  3.         Copyright (c), 1994, Wallace Information Systems Engineering
  4.  
  5. FUNCTION:
  6.  
  7. _Ctr_Var( cCenterStr ) --> cString
  8.  
  9. PARAMETERS:
  10.  
  11. cCenterStr : String to be centered
  12.  
  13. SHORT:
  14.  
  15. Center (redistribute) a string within it's own length.
  16.  
  17. DESCRIPTION:
  18.  
  19. _Ctr_Var() takes a string with trailing spaces and repositions the non-blank
  20. portion within the length of the variable itself. The trailing spaces are
  21. evenly redistributed to the begin and ending of the non-blank value.  This is
  22. really simple!!!!
  23.  
  24. NOTE:
  25.  
  26.  
  27.  
  28. EXAMPLE:
  29.  
  30. cString1 = _Ctr_Var('THIS IS A VARIABLE                 ')
  31. Result:  cString1 = '         THIS IS A VARIABLE        '
  32.  
  33. ******************************************************************************/
  34.